12#ifndef AOM_AV1_ENCODER_SPEED_FEATURES_H_
13#define AOM_AV1_ENCODER_SPEED_FEATURES_H_
16#include "av1/encoder/enc_enums.h"
17#include "av1/encoder/mcomp.h"
18#include "av1/encoder/encodemb.h"
27#define MAX_MESH_STEP 4
29typedef struct MESH_PATTERN {
36 GM_REDUCED_REF_SEARCH_SKIP_L2_L3,
37 GM_REDUCED_REF_SEARCH_SKIP_L2_L3_ARF2,
41 GM_SEARCH_CLOSEST_REFS_ONLY,
44} UENUM1BYTE(GM_SEARCH_TYPE);
47 DIST_WTD_COMP_ENABLED,
48 DIST_WTD_COMP_SKIP_MV_SEARCH,
49 DIST_WTD_COMP_DISABLED,
50} UENUM1BYTE(DIST_WTD_COMP_FLAG);
53 INTRA_ALL = (1 << DC_PRED) | (1 << V_PRED) | (1 << H_PRED) | (1 << D45_PRED) |
54 (1 << D135_PRED) | (1 << D113_PRED) | (1 << D157_PRED) |
55 (1 << D203_PRED) | (1 << D67_PRED) | (1 << SMOOTH_PRED) |
56 (1 << SMOOTH_V_PRED) | (1 << SMOOTH_H_PRED) | (1 << PAETH_PRED),
58 (1 << UV_DC_PRED) | (1 << UV_V_PRED) | (1 << UV_H_PRED) |
59 (1 << UV_D45_PRED) | (1 << UV_D135_PRED) | (1 << UV_D113_PRED) |
60 (1 << UV_D157_PRED) | (1 << UV_D203_PRED) | (1 << UV_D67_PRED) |
61 (1 << UV_SMOOTH_PRED) | (1 << UV_SMOOTH_V_PRED) |
62 (1 << UV_SMOOTH_H_PRED) | (1 << UV_PAETH_PRED) | (1 << UV_CFL_PRED),
63 UV_INTRA_DC = (1 << UV_DC_PRED),
64 UV_INTRA_DC_CFL = (1 << UV_DC_PRED) | (1 << UV_CFL_PRED),
65 UV_INTRA_DC_TM = (1 << UV_DC_PRED) | (1 << UV_PAETH_PRED),
66 UV_INTRA_DC_PAETH_CFL =
67 (1 << UV_DC_PRED) | (1 << UV_PAETH_PRED) | (1 << UV_CFL_PRED),
68 UV_INTRA_DC_H_V = (1 << UV_DC_PRED) | (1 << UV_V_PRED) | (1 << UV_H_PRED),
69 UV_INTRA_DC_H_V_CFL = (1 << UV_DC_PRED) | (1 << UV_V_PRED) |
70 (1 << UV_H_PRED) | (1 << UV_CFL_PRED),
71 UV_INTRA_DC_PAETH_H_V = (1 << UV_DC_PRED) | (1 << UV_PAETH_PRED) |
72 (1 << UV_V_PRED) | (1 << UV_H_PRED),
73 UV_INTRA_DC_PAETH_H_V_CFL = (1 << UV_DC_PRED) | (1 << UV_PAETH_PRED) |
74 (1 << UV_V_PRED) | (1 << UV_H_PRED) |
76 INTRA_DC = (1 << DC_PRED),
77 INTRA_DC_TM = (1 << DC_PRED) | (1 << PAETH_PRED),
78 INTRA_DC_H_V = (1 << DC_PRED) | (1 << V_PRED) | (1 << H_PRED),
80 (1 << DC_PRED) | (1 << V_PRED) | (1 << H_PRED) | (1 << SMOOTH_PRED),
82 (1 << DC_PRED) | (1 << PAETH_PRED) | (1 << V_PRED) | (1 << H_PRED)
86 INTER_ALL = (1 << NEARESTMV) | (1 << NEARMV) | (1 << GLOBALMV) |
87 (1 << NEWMV) | (1 << NEAREST_NEARESTMV) | (1 << NEAR_NEARMV) |
88 (1 << NEW_NEWMV) | (1 << NEAREST_NEWMV) | (1 << NEAR_NEWMV) |
89 (1 << NEW_NEARMV) | (1 << NEW_NEARESTMV) | (1 << GLOBAL_GLOBALMV),
90 INTER_NEAREST_NEAR_ZERO = (1 << NEARESTMV) | (1 << NEARMV) | (1 << GLOBALMV) |
91 (1 << NEAREST_NEARESTMV) | (1 << GLOBAL_GLOBALMV) |
92 (1 << NEAREST_NEWMV) | (1 << NEW_NEARESTMV) |
93 (1 << NEW_NEARMV) | (1 << NEAR_NEWMV) |
96 (1 << NEARESTMV) | (1 << NEARMV) | (1 << GLOBALMV) | (1 << NEWMV),
100 DISABLE_ALL_INTER_SPLIT = (1 << THR_COMP_GA) | (1 << THR_COMP_LA) |
101 (1 << THR_ALTR) | (1 << THR_GOLD) | (1 << THR_LAST),
103 DISABLE_ALL_SPLIT = (1 << THR_INTRA) | DISABLE_ALL_INTER_SPLIT,
105 DISABLE_COMPOUND_SPLIT = (1 << THR_COMP_GA) | (1 << THR_COMP_LA),
107 LAST_AND_INTRA_SPLIT_ONLY = (1 << THR_COMP_GA) | (1 << THR_COMP_LA) |
108 (1 << THR_ALTR) | (1 << THR_GOLD)
120} UENUM1BYTE(DEV_SPEED_FEATURES);
133 ALLOW_RECODE_KFARFGF = 1,
138} UENUM1BYTE(RECODE_LOOP_TYPE);
142 SUBPEL_TREE_PRUNED = 1,
143 SUBPEL_TREE_PRUNED_MORE = 2,
144 SUBPEL_SEARCH_METHODS
145} UENUM1BYTE(SUBPEL_SEARCH_METHOD);
149 LPF_PICK_FROM_FULL_IMAGE,
151 LPF_PICK_FROM_FULL_IMAGE_NON_DUAL,
153 LPF_PICK_FROM_SUBIMAGE,
158} UENUM1BYTE(LPF_PICK_METHOD);
180 FLAG_EARLY_TERMINATE = 1 << 0,
183 FLAG_SKIP_COMP_BESTINTRA = 1 << 1,
186 FLAG_SKIP_INTRA_BESTINTER = 1 << 3,
190 FLAG_SKIP_INTRA_DIRMISMATCH = 1 << 4,
193 FLAG_SKIP_INTRA_LOWVAR = 1 << 5,
194} UENUM1BYTE(MODE_SEARCH_SKIP_LOGIC);
208} UENUM1BYTE(TX_TYPE_PRUNE_MODE);
216 FAST_DETECTION_MAXQ = 1,
217} UENUM1BYTE(OVERSHOOT_DETECTION_CBR);
223 MULTI_WINNER_MODE_OFF = 0,
226 MULTI_WINNER_MODE_FAST = 1,
230 MULTI_WINNER_MODE_DEFAULT = 2,
233 MULTI_WINNER_MODE_LEVELS,
234} UENUM1BYTE(MULTI_WINNER_MODE_TYPE);
237 PRUNE_NEARMV_OFF = 0,
238 PRUNE_NEARMV_LEVEL1 = 1,
239 PRUNE_NEARMV_LEVEL2 = 2,
240 PRUNE_NEARMV_LEVEL3 = 3,
241 PRUNE_NEARMV_MAX = PRUNE_NEARMV_LEVEL3,
242} UENUM1BYTE(PRUNE_NEARMV_LEVEL);
248 TX_SEARCH_DEFAULT = 0,
250 TX_SEARCH_MOTION_MODE,
252 TX_SEARCH_COMP_TYPE_MODE,
255} UENUM1BYTE(TX_SEARCH_CASE);
258 TX_TYPE_PRUNE_MODE prune_2d_txfm_mode;
259 int fast_intra_tx_type_search;
266 int fast_inter_tx_type_prob_thresh;
270 int use_reduced_intra_txset;
274 int use_skip_flag_prediction;
277 int ml_tx_split_thresh;
284 int prune_tx_type_using_stats;
286 int prune_tx_type_est_rd;
292 int winner_mode_tx_type_pruning;
305#if CONFIG_RT_ML_PARTITIONING
309} UENUM1BYTE(PARTITION_SEARCH_TYPE);
316} UENUM1BYTE(MAX_PART_PRED_MODE);
322} UENUM1BYTE(MV_PREC_LOGIC);
328} UENUM1BYTE(SUPERRES_AUTO_SEARCH_TYPE);
531typedef struct TPL_SPEED_FEATURES {
539 int gop_length_decision_method;
543 int prune_intra_modes;
545 int reduce_first_step_size;
552 int skip_alike_starting_mv;
555 SUBPEL_FORCE_STOP subpel_force_stop;
558 SEARCH_METHODS search_method;
561 int prune_starting_mv;
564 int prune_ref_frames_in_tpl;
567 int allow_compound_pred;
570 int use_y_only_rate_distortion;
579 int use_sad_for_mode_decision;
583 int reduce_num_frames;
586typedef struct GLOBAL_MOTION_SPEED_FEATURES {
587 GM_SEARCH_TYPE gm_search_type;
592 int prune_ref_frame_for_gm_search;
603 int disable_gm_search_based_on_stats;
606 int downsample_level;
609 int num_refinement_steps;
613 int gm_erroradv_tr_level;
614} GLOBAL_MOTION_SPEED_FEATURES;
616typedef struct PARTITION_SPEED_FEATURES {
617 PARTITION_SEARCH_TYPE partition_search_type;
620 BLOCK_SIZE fixed_partition_size;
626 int prune_ext_partition_types_search_level;
629 int prune_part4_search;
633 int ml_prune_partition;
638 int ml_early_term_after_part_split_level;
643 int less_rectangular_check_level;
646 BLOCK_SIZE use_square_partition_only_threshold;
651 MAX_PART_PRED_MODE auto_max_partition_based_on_simple_motion;
655 BLOCK_SIZE default_min_partition_size;
656 BLOCK_SIZE default_max_partition_size;
662 int adjust_var_based_rd_partitioning;
665 int64_t partition_search_breakout_dist_thr;
666 int partition_search_breakout_rate_thr;
669 int ml_partition_search_breakout_thresh[PARTITION_BLOCK_SIZES];
675 int simple_motion_search_prune_agg;
679 int simple_motion_search_prune_rect;
686 int simple_motion_search_split;
690 int simple_motion_search_early_term_none;
696 int simple_motion_search_reduce_search_steps;
701 BLOCK_SIZE max_intra_bsize;
708 int intra_cnn_based_part_prune_level;
712 BLOCK_SIZE ext_partition_eval_thresh;
715 int ext_part_eval_based_on_cur_best;
718 int rect_partition_eval_thresh;
725 int prune_ext_part_using_split_info;
731 int prune_rectangular_split_based_on_qidx;
743 bool prune_rect_part_using_4x4_var_deviation;
765 bool prune_rect_part_using_none_pred_mode;
769 int early_term_after_none_split;
775 int ml_predict_breakout_level;
781 int prune_sub_8x8_partition_level;
785 int simple_motion_search_rect_split;
818 int reuse_prev_rd_results_for_part_ab;
822 int reuse_best_prediction_for_part_ab;
832 int use_best_rd_for_pruning;
840 int skip_non_sq_part_based_on_none;
843 int disable_8x8_part_based_on_qidx;
848 int split_partition_penalty_level;
849} PARTITION_SPEED_FEATURES;
851typedef struct MV_SPEED_FEATURES {
853 SEARCH_METHODS search_method;
859 int use_bsize_dependent_search_method;
863 int auto_mv_step_size;
869 SUBPEL_SEARCH_METHOD subpel_search_method;
872 int subpel_iters_per_step;
875 SUBPEL_FORCE_STOP subpel_force_stop;
878 SUBPEL_FORCE_STOP simple_motion_subpel_force_stop;
882 SUBPEL_SEARCH_TYPE use_accurate_subpel_search;
885 int exhaustive_searches_thresh;
888 MESH_PATTERN mesh_patterns[MAX_MESH_STEP];
891 MESH_PATTERN intrabc_mesh_patterns[MAX_MESH_STEP];
894 int reduce_search_range;
900 int use_fullpel_costlist;
905 int obmc_full_pixel_search_level;
908 int full_pixel_search_level;
916 int prune_intrabc_candidate_block_hash_search;
921 int intrabc_search_level;
926 int hash_max_8x8_intrabc_blocks;
939 int use_downsampled_sad;
942 int disable_extensive_joint_motion_search;
948 int disable_second_mv;
954 int skip_fullpel_search_using_startmv;
958 WARP_SEARCH_METHOD warp_search_method;
961 int warp_search_iters;
964typedef struct INTER_MODE_SPEED_FEATURES {
971 int inter_mode_rd_model_estimation;
977 int txfm_rd_gate_level[TX_SEARCH_CASES];
980 int reduce_inter_modes;
984 int adaptive_rd_thresh;
987 int prune_inter_modes_if_skippable;
992 int selective_ref_frame;
998 int prune_ref_frame_for_rect_partitions;
1004 int alt_ref_search_fp;
1010 int prune_single_ref;
1021 int prune_comp_ref_frames;
1035 int skip_newmv_in_drl;
1041 int skip_repeated_ref_mv;
1044 int perform_best_rd_based_gating_for_chroma;
1048 int reuse_inter_intra_mode;
1052 int prune_comp_type_by_model_rd;
1056 int prune_comp_type_by_comp_avg;
1064 int prune_comp_search_by_single_result;
1069 int prune_mode_search_simple_translation;
1074 int prune_compound_using_single_ref;
1083 int prune_ext_comp_using_neighbors;
1086 int skip_ext_comp_nearmv_mode;
1093 int prune_comp_using_best_single_mode_ref;
1099 int prune_nearest_near_mv_using_refmv_weight;
1102 int prune_ref_mv_idx_search;
1105 int disable_onesided_comp;
1109 int prune_obmc_prob_thresh;
1112 int prune_warped_prob_thresh;
1115 unsigned int disable_interintra_wedge_var_thresh;
1118 unsigned int disable_interinter_wedge_var_thresh;
1121 int fast_interintra_wedge_search;
1124 int fast_wedge_sign_estimate;
1127 int disable_interinter_wedge_newmv_search;
1130 DIST_WTD_COMP_FLAG use_dist_wtd_comp_flag;
1144 int prune_inter_modes_based_on_tpl;
1148 PRUNE_NEARMV_LEVEL prune_nearmv_using_neighbors;
1153 int model_based_post_interp_filter_breakout;
1158 int reuse_compound_type_decision;
1161 int disable_masked_comp;
1177 int enable_fast_compound_mode_search;
1180 int reuse_mask_search_results;
1183 int enable_fast_wedge_mask_search;
1186 int inter_mode_txfm_breakout;
1192 int limit_inter_mode_cands;
1196 int limit_txfm_eval_per_mode;
1199 int extra_prune_warped;
1210 int skip_arf_compound;
1215 int bias_warp_mode_rd_scale_pct;
1216} INTER_MODE_SPEED_FEATURES;
1218typedef struct INTERP_FILTER_SPEED_FEATURES {
1221 int use_fast_interpolation_filter_search;
1224 int disable_dual_filter;
1229 int use_interp_filter;
1233 int skip_sharp_interp_filter_search;
1236 int cb_pred_filter_search;
1239 int adaptive_interp_filter_search;
1243 int skip_interp_filter_search;
1244} INTERP_FILTER_SPEED_FEATURES;
1246typedef struct INTRA_MODE_SPEED_FEATURES {
1249 int intra_y_mode_mask[TX_SIZES];
1250 int intra_uv_mode_mask[TX_SIZES];
1253 int skip_intra_in_interframe;
1259 int intra_pruning_with_hog;
1265 int chroma_intra_pruning_with_hog;
1268 int disable_smooth_intra;
1279 bool prune_smooth_intra_mode_for_chroma;
1285 int prune_filter_intra_level;
1294 int prune_palette_search_level;
1314 int prune_luma_palette_size_search_level;
1320 int prune_chroma_modes_using_luma_winner;
1336 int cfl_search_range;
1341 int top_intra_model_count_allowed;
1345 int adapt_top_model_rd_count_using_neighbors;
1355 int prune_luma_odd_delta_angles_in_intra;
1367 int early_term_chroma_palette_size_search;
1371 int skip_filter_intra_in_inter_frames;
1372} INTRA_MODE_SPEED_FEATURES;
1374typedef struct TX_SPEED_FEATURES {
1378 int inter_tx_size_search_init_depth_sqr;
1379 int inter_tx_size_search_init_depth_rect;
1380 int intra_tx_size_search_init_depth_sqr;
1381 int intra_tx_size_search_init_depth_rect;
1385 int tx_size_search_lgr_block;
1387 TX_TYPE_SEARCH tx_type_search;
1397 int adaptive_txb_search_level;
1402 int model_based_prune_tx_search_level;
1405 int refine_fast_tx_search_results;
1410 int prune_tx_size_level;
1421 bool prune_intra_tx_depths_using_nn;
1436 bool use_rd_based_breakout_for_intra_tx_search;
1439typedef struct RD_CALC_SPEED_FEATURES {
1441 int simple_model_rd_from_var;
1465 int tx_domain_dist_level;
1468 int tx_domain_dist_thres_level;
1471 TRELLIS_OPT_TYPE optimize_coefficients;
1478 int perform_coeff_opt;
1479} RD_CALC_SPEED_FEATURES;
1481typedef struct WINNER_MODE_SPEED_FEATURES {
1484 int enable_winner_mode_for_coeff_opt;
1488 int enable_winner_mode_for_tx_size_srch;
1496 int tx_size_search_level;
1500 int enable_winner_mode_for_use_tx_domain_dist;
1503 MULTI_WINNER_MODE_TYPE multi_winner_mode_type;
1508 int motion_mode_for_winner_cand;
1515 int dc_blk_pred_level;
1520 int winner_mode_ifs;
1534 int prune_winner_mode_eval_level;
1535} WINNER_MODE_SPEED_FEATURES;
1537typedef struct LOOP_FILTER_SPEED_FEATURES {
1539 LPF_PICK_METHOD lpf_pick;
1543 int use_coarse_filter_level_search;
1547 int adaptive_luma_loop_filter_skip;
1552 int skip_loop_filter_using_filt_error;
1560 int dual_sgr_penalty_level;
1569 int switchable_lr_with_bias_level;
1572 int enable_sgr_ep_pruning;
1575 int disable_loop_restoration_chroma;
1578 int disable_loop_restoration_luma;
1584 int min_lr_unit_size;
1585 int max_lr_unit_size;
1591 int prune_wiener_based_on_src_var;
1598 int prune_sgr_based_on_wiener;
1601 int reduce_wiener_window_size;
1604 bool disable_wiener_filter;
1607 bool disable_sgr_filter;
1610 bool disable_wiener_coeff_refine_search;
1613 int use_downsampled_wiener_stats;
1614} LOOP_FILTER_SPEED_FEATURES;
1616typedef struct REAL_TIME_SPEED_FEATURES {
1618 int check_intra_pred_nonrd;
1625 int skip_intra_pred;
1632 int estimate_motion_for_var_based_partition;
1639 int nonrd_check_partition_merge_mode;
1642 int nonrd_check_partition_split;
1647 unsigned int mode_search_skip_flags;
1653 int nonrd_prune_ref_frame_search;
1656 int use_nonrd_pick_mode;
1661 int discount_color_cost;
1664 int use_nonrd_altref_frame;
1667 int use_comp_ref_nonrd;
1671 int ref_frame_comp_nonrd[3];
1674 int use_real_time_ref_set;
1678 int short_circuit_low_temp_var;
1681 int reuse_inter_pred_nonrd;
1684 int num_inter_modes_for_tx_search;
1687 int use_nonrd_filter_search;
1690 int use_simple_rd_model;
1697 int hybrid_intra_pickmode;
1706 int prune_palette_search_nonrd;
1709 int source_metrics_sb_nonrd;
1713 OVERSHOOT_DETECTION_CBR overshoot_detection_cbr;
1716 int check_scene_detection;
1719 int rc_adjust_keyframe;
1722 int rc_compute_spatial_var_sc;
1726 int prefer_large_partition_blocks;
1729 int use_temporal_noise_estimate;
1735 int fullpel_search_step_param;
1742 int intra_y_mode_bsize_mask_nrd[BLOCK_SIZES];
1750 bool prune_hv_pred_modes_using_src_sad;
1753 int nonrd_aggressive_skip;
1765 int selective_cdf_update;
1768 int force_only_last_ref;
1772 int force_large_partition_blocks_intra;
1777 int use_fast_fixed_part;
1780 int increase_source_sad_thresh;
1783 int skip_tx_no_split_var_based_partition;
1787 int skip_newmv_mode_based_on_sse;
1794 int prune_inter_modes_with_golden_ref;
1797 int prune_inter_modes_wrt_gf_arf_based_on_sad;
1801 int prune_inter_modes_using_temp_var;
1808 int reduce_mv_pel_precision_highmotion;
1815 int reduce_mv_pel_precision_lowcomplex;
1818 BLOCK_SIZE prune_intra_mode_based_on_mv_range;
1822 int var_part_split_threshold_shift;
1829 int var_part_based_on_qidx;
1832 int gf_refresh_based_on_qp;
1845 int prune_idtx_nonrd;
1848 int dct_only_palette_nonrd;
1860 int thresh_active_maps_skip_lf_cdef;
1867 int part_early_exit_zeromv;
1873 int sad_based_adp_altref_lag;
1876 int partition_direct_merging;
1879 int tx_size_level_based_on_qstep;
1889 bool vbp_prune_16x16_split_using_min_max_sub_blk_var;
1904 int screen_content_cdef_filter_qindex_thresh;
1908 bool prune_compoundmode_with_singlecompound_var;
1913 bool frame_level_mode_cost_update;
1923 bool prune_h_pred_using_best_mode_so_far;
1934 bool enable_intra_mode_pruning_using_neighbors;
1943 bool prune_intra_mode_using_best_sad_so_far;
1948 bool check_only_zero_zeromv_on_large_blocks;
1951 bool disable_cdf_update_non_reference_frame;
1954 bool prune_compoundmode_with_singlemode_var;
1958 bool skip_compound_based_on_var;
1965 int set_zeromv_skip_based_on_source_sad;
1970 bool use_adaptive_subpel_search;
1976 bool enable_ref_short_signaling;
1980 bool check_globalmv_on_single_ref;
1985 bool increase_color_thresh_palette;
1988 int higher_thresh_scene_detection;
1991 int skip_newmv_flat_blocks_screen;
1994 int skip_encoding_non_reference_slide_change;
1998 int rc_faster_convergence_static;
2001 int skip_newmv_mode_sad_screen;
2002} REAL_TIME_SPEED_FEATURES;
static int prune_zero_mv_with_sse(const aom_variance_fn_ptr_t *fn_ptr, const MACROBLOCK *x, BLOCK_SIZE bsize, const HandleInterModeArgs *args, int prune_zero_mv_with_sse)
Prunes ZeroMV Search Using Best NEWMV's SSE.
Definition rdopt.c:2761
void av1_set_speed_features_framesize_independent(struct AV1_COMP *cpi, int speed)
Frame size independent speed vs quality trade off flags.
void av1_set_speed_features_qindex_dependent(struct AV1_COMP *cpi, int speed)
Q index dependent speed vs quality trade off flags.
void av1_set_speed_features_framesize_dependent(struct AV1_COMP *cpi, int speed)
Frame size dependent speed vs quality trade off flags.
INTERNAL_COST_UPDATE_TYPE
This enum decides internally how often to update the entropy costs.
Definition speed_features.h:346
@ INTERNAL_COST_UPD_OFF
Definition speed_features.h:347
@ INTERNAL_COST_UPD_SBROW_SET
Definition speed_features.h:349
@ INTERNAL_COST_UPD_SBROW
Definition speed_features.h:350
@ INTERNAL_COST_UPD_SB
Definition speed_features.h:351
@ INTERNAL_COST_UPD_TILE
Definition speed_features.h:348
INTER_SEARCH_EARLY_TERM_IDX
This enumeration defines inter search early termination index in non-rd path based on sse value.
Definition speed_features.h:390
@ EARLY_TERM_INDICES
Definition speed_features.h:401
@ EARLY_TERM_IDX_1
Definition speed_features.h:393
@ EARLY_TERM_IDX_4
Definition speed_features.h:399
@ EARLY_TERM_IDX_2
Definition speed_features.h:395
@ EARLY_TERM_DISABLED
Definition speed_features.h:391
@ EARLY_TERM_IDX_3
Definition speed_features.h:397
SIMPLE_MOTION_SEARCH_PRUNE_LEVEL
This enumeration defines a variety of simple motion search based partition prune levels.
Definition speed_features.h:358
@ QIDX_BASED_AGG_LVL1
Definition speed_features.h:364
@ SIMPLE_AGG_LVL3
Definition speed_features.h:363
@ TOTAL_SIMPLE_AGG_LVLS
Definition speed_features.h:367
@ SIMPLE_AGG_LVL1
Definition speed_features.h:361
@ SIMPLE_AGG_LVL0
Definition speed_features.h:360
@ TOTAL_AGG_LVLS
Definition speed_features.h:373
@ SIMPLE_AGG_LVL2
Definition speed_features.h:362
@ TOTAL_QINDEX_BASED_AGG_LVLS
Definition speed_features.h:369
struct SPEED_FEATURES SPEED_FEATURES
Top level speed vs quality trade off data struture.
PRUNE_MESH_SEARCH_LEVEL
This enumeration defines a variety of mesh search prune levels.
Definition speed_features.h:380
@ PRUNE_MESH_SEARCH_LVL_1
Definition speed_features.h:382
@ PRUNE_MESH_SEARCH_LVL_2
Definition speed_features.h:383
@ PRUNE_MESH_SEARCH_DISABLED
Definition speed_features.h:381
struct HIGH_LEVEL_SPEED_FEATURES HIGH_LEVEL_SPEED_FEATURES
Sequence/frame level speed vs quality features.
struct FIRST_PASS_SPEED_FEATURES FIRST_PASS_SPEED_FEATURES
CDEF_PICK_METHOD
This enumeration defines a variety of CDEF pick methods.
Definition speed_features.h:164
@ CDEF_FAST_SEARCH_LVL2
Definition speed_features.h:167
@ CDEF_FAST_SEARCH_LVL5
Definition speed_features.h:171
@ CDEF_FAST_SEARCH_LVL1
Definition speed_features.h:166
@ CDEF_FULL_SEARCH
Definition speed_features.h:165
@ CDEF_PICK_FROM_Q
Definition speed_features.h:172
@ CDEF_FAST_SEARCH_LVL4
Definition speed_features.h:170
@ CDEF_FAST_SEARCH_LVL3
Definition speed_features.h:168
Top level encoder structure.
Definition encoder.h:2895
int speed
Definition encoder.h:3117
Definition speed_features.h:505
int disable_recon
Skips reconstruction by using source buffers for prediction.
Definition speed_features.h:522
int reduce_mv_step_param
Reduces the mv search window. By default, the initial search window is around MIN(MIN(dims),...
Definition speed_features.h:512
int skip_zeromv_motion_search
Skips the motion search centered on 0,0 mv.
Definition speed_features.h:527
int skip_motion_search_threshold
Skips the motion search when the zero mv has small sse.
Definition speed_features.h:517
Sequence/frame level speed vs quality features.
Definition speed_features.h:407
int adjust_num_frames_for_arf_filtering
Definition speed_features.h:462
int allow_sub_blk_me_in_tf
Definition speed_features.h:484
int second_alt_ref_filtering
Definition speed_features.h:452
int frame_parameter_update
Definition speed_features.h:409
int weight_calc_level_in_tf
Definition speed_features.h:476
MV_PREC_LOGIC high_precision_mv_usage
Definition speed_features.h:428
int ref_frame_mvs_lvl
Definition speed_features.h:492
int disable_extra_sc_testing
Definition speed_features.h:447
int screen_detection_mode2_fast_detection
Definition speed_features.h:499
int recode_tolerance
Definition speed_features.h:420
SUPERRES_AUTO_SEARCH_TYPE superres_auto_search_type
Definition speed_features.h:442
int static_segmentation
Definition speed_features.h:437
int accurate_bit_estimate
Definition speed_features.h:469
RECODE_LOOP_TYPE recode_loop
Definition speed_features.h:414
Top level speed vs quality trade off data struture.
Definition speed_features.h:2009
MV_SPEED_FEATURES mv_sf
Definition speed_features.h:2038
TPL_SPEED_FEATURES tpl_sf
Definition speed_features.h:2023
LOOP_FILTER_SPEED_FEATURES lpf_sf
Definition speed_features.h:2073
TX_SPEED_FEATURES tx_sf
Definition speed_features.h:2058
INTER_MODE_SPEED_FEATURES inter_sf
Definition speed_features.h:2043
RD_CALC_SPEED_FEATURES rd_sf
Definition speed_features.h:2063
PARTITION_SPEED_FEATURES part_sf
Definition speed_features.h:2033
GLOBAL_MOTION_SPEED_FEATURES gm_sf
Definition speed_features.h:2028
INTERP_FILTER_SPEED_FEATURES interp_sf
Definition speed_features.h:2048
FIRST_PASS_SPEED_FEATURES fp_sf
Definition speed_features.h:2018
INTRA_MODE_SPEED_FEATURES intra_sf
Definition speed_features.h:2053
WINNER_MODE_SPEED_FEATURES winner_mode_sf
Definition speed_features.h:2068
REAL_TIME_SPEED_FEATURES rt_sf
Definition speed_features.h:2078
HIGH_LEVEL_SPEED_FEATURES hl_sf
Definition speed_features.h:2013